home *** CD-ROM | disk | FTP | other *** search
- /*
- * File: AERequired.h
- * Author: Mark H. Linton
- * Creation Date: 2/4/95
- * Modification Date:
- * Description: A set of routines which may be used to handle
- * the processing of the four required AppleEvents.
- *
- * The OAPP handler assumes you have a public
- * function DoNewCommand defined as:
- *
- * pascal OSErr DoNewCommand(void);
- *
- * The ODOC handler assumes you have a public
- * function DoOpenCommand defined as:
- *
- * pascal void DoOpenCommand(FSSpec *aFile);
- *
- * The PDOC handler assumes you have a public
- * function DoPrintFile defined as:
- *
- * pascal void DoPrintFile(FSSpec *aFile);
- *
- * The QUIT handler assumes you have a public
- * function DoQuit defined as:
- *
- * pascal OSErr DoQuit(void);
- *
- */
- #ifndef __AEREQUIRED__
- #define __AEREQUIRED__
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
-
- pascal OSErr InstallRequiredAppleEvents(void);
-
- #endif